@font-face {
    font-family: 'Raleway';
    src: url(/fonts/Raleway-VariableFont_wght.ttf) format('truetype');
}
body {
    display: flex;
    font-family: 'Raleway', sans-serif;
    background-color: #ffb8cc;
    flex-direction: column; /* Ensures that the header and content-center are laid out in a column */
}
.content-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    flex-grow: 1; /* Allows the container to expand, filling the available space */
}
li {
    list-style-type: none;
}
.no-link {
    text-decoration: none;
    color: black;
}